PATHMac OS 8 and 9 Developer Documentation > Human Interface Toolbox > Appearance Manager >

Programming With the Appearance Manager


Theme Scroll Bar Arrow Style Constants

You can call the function GetThemeScrollBarArrowStyle to obtain the type of scroll bar arrows being used in the current theme. The ThemeScrollBarArrowStyle constants are available with Appearance Manager 1.1 and later.

enum {
    kThemeScrollBarArrowsSingle     = 0,
    kThemeScrollBarArrowsLowerRight = 1
};
typedef UInt16 ThemeScrollBarArrowStyle;

Constant descriptions

kThemeScrollBarArrowsSingle
Specifies the use of a single arrow at each end of a scroll bar.
kThemeScrollBarArrowsLowerRight
Specifies the use of double arrows at one end of a scroll bar. For vertical scroll bars, the double arrows are located at the lower end of the scroll bar. For horizontal scroll bars, the double arrows are located at the right end of the scroll bar.

© 1999 Apple Computer, Inc. – (Last Updated 29 April 99)